All Questions
3 questions
1vote
2answers
141views
2votes
1answer
82views
Length of the longest common sub sequence bottom up
Could I get some feedback on this code? I included a test case as well. This code computes the longest common sub sequence given paired data, it was not part of any challenge I just did it to learn ...
2votes
1answer
581views
Longest common substring using dynamic programming
I've written a short python script that attempts to solve the problem of finding the longest common substring using the dynamic programming technique. It is meant to be generalised so I could plug in ...